
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
@gasket/plugin-dynamic-plugins
Advanced tools
Gasket plugin for dynamically adding plugins to Gasket
Gasket plugin for dynamically adding plugins to Gasket
npm i @gasket/plugin-dynamic-plugins
Update your gasket
file plugin configuration:
// gasket.js
+ import pluginDynamicPlugins from '@gasket/plugin-dynamic-plugins';
export default makeGasket({
plugins: [
+ pluginDynamicPlugins
]
});
This plugin gives you the option to dynamically add plugins to Gasket after the core Gasket instance has been created.
This can be useful when you want to add plugins to Gasket for specific environments or commands.
For example, if you have plugins that are really only needed for development,
such as (@gasket/plugin-docs
, @gasket/plugin-docusarus
), you can dynamically
load them into Gasket only when doing development locally through with plugin.
You could then add plugins designated only for development to you
devDependencies
in your package.json
file.
To specify which plugins to load dynamically,
in your gasket
set the dynamicPlugins
prop to an array of strings
containing the plugin names you want to add.
// gasket.js
export default makeGasket({
+ dynamicPlugins: [
+ '@gasket/plugin-foo',
+ '@gasket/plugin-bar',
+ './custom-plugin.js'
+ ]
});
You can use sub-configurations by environments or commands to determine which plugins to load dynamically.
For example, if you wanted to load docs-related plugins only when using the docs commands, with a package script like:
"docs": "node gasket.js docs"
In your gasket
file, you would then configure the plugins to load dynamically
when the docs
command is used.
makeGasket({
// ...
commands: {
'docs': {
dynamicPlugins: [
'@gasket/plugin-docs',
'@gasket/plugin-docusaurus',
'@gasket/plugin-metadata'
]
}
}
})
Basic gasket configuration is synchronous, but dynamic plugins will be loaded asynchronously.
If you want to wait until dynamic plugins have been loaded into the Gasket
instance before running app code or actions, you can do so by checking if the
isReady
property on the Gasket instance has been resolved.
export default {
name: 'example-plugin',
actions: {
async myAction(gasket) {
+ await gasket.isReady;
// do something async after dynamic plugins have been loaded
}
}
};
This plugin hooks the prepare lifecycle to add dynamic plugins to the Gasket instance.
In the prepare
hook, plugins specified in the dynamicPlugins
configuration
are registered with the Gasket instance.
The init
, configure
, and prepare
lifecycles are then executed exclusively
for the newly added dynamic plugins.
FAQs
Gasket plugin for dynamically adding plugins to Gasket
The npm package @gasket/plugin-dynamic-plugins receives a total of 35 weekly downloads. As such, @gasket/plugin-dynamic-plugins popularity was classified as not popular.
We found that @gasket/plugin-dynamic-plugins demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.